home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DEMOS / SUN_RSC.ZIP / TIMER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-27  |  206 b   |  17 lines

  1. // TIMER_C
  2.  
  3. #ifndef _TIMER_H
  4. #define _TIMER_H
  5.  
  6. class timer_C
  7. {
  8. public:
  9.   timer_C();
  10.   ~timer_C();
  11.   long readtimer(void);
  12.   long elapsed(unsigned long start,unsigned long stop);
  13. };
  14.  
  15. #endif
  16.  
  17.